Move optional dependencies from dev_requirements to pyproject.toml#897
Closed
FreddyFox892 wants to merge 4 commits into
Closed
Move optional dependencies from dev_requirements to pyproject.toml#897FreddyFox892 wants to merge 4 commits into
dev_requirements to pyproject.toml#897FreddyFox892 wants to merge 4 commits into
Conversation
lord-haffi
reviewed
Oct 15, 2024
Comment on lines
-33
to
+37
| runs-on: ubuntu-latest | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| python-version: [ "3.12" ] | ||
| os: [ ubuntu-latest ] |
Collaborator
There was a problem hiding this comment.
Ist es möglich, die Matrix eine Ebene höher zu definieren, damit wir's nur einmal da stehen haben? Fänd ich besser.
Collaborator
Author
There was a problem hiding this comment.
Aber an der Pipeline zu arbeiten ist eher etwas was ich mir für einen folge PR aufhebn würde, um die komplexität des PRs nur auf das wesentliche zu beschränken
7 tasks
Collaborator
|
Superseded by #1068 |
lord-haffi
added a commit
that referenced
this pull request
Jun 5, 2026
## Summary Closes #897. - Replace the 14 `dev_requirements/*.in/*.txt` files with PEP 735 `[dependency-groups]` in `pyproject.toml` (tests, coverage, type_check, linting, formatting, packaging, json_schemas, docs, plus a `dev` meta-group). - Switch tox to `tox-uv`: `[testenv:*]` now use `dependency_groups = …` instead of `deps = -r dev_requirements/…`. Editable install declared once at `[testenv]` level via `package = editable`. - Update CI: every `pip install tox` → `pip install tox tox-uv`. The two workflow steps that bypassed tox (`python-publish.yml` and `python-publish-scheduled.yml`) now use `pip install uv` + `uv pip install --system --group …`. - Drop the `/dev_requirements/` dependabot pip entry — the root entry covers PEP 735 groups too. - Lock pinned versions in `uv.lock` (133 packages, generated against the new groups). - README + `docs/contributing_guide.rst`: new "Entwicklungs-Setup" section pointing at uv + tox-uv (replaces the stale link to `python_template_repository`). ## Test plan - [x] `tox -e tests` — 121 passed locally with `tox-uv`, editable bo4e built via hatchling. - [ ] `tox -e linting` - [ ] `tox -e type_check` - [ ] `tox -e coverage` - [ ] `tox -e docs` - [ ] CI: all matrix workflows green - [ ] Dependabot picks up the runtime + PEP 735 groups from the root entry on next run 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.